home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C & C++ Multimedia Cyber Classroom
/
C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso
/
cpphtp2
/
code.jar
/
code
/
ch15
/
fig15_21.txt
< prev
next >
Wrap
Text File
|
1998-02-27
|
335b
|
14 lines
10 rem determine and print the sum of two integers
32 15 rem
33 20 rem input the two integers
34 30 input a
35 40 input b
36 45 rem
37 50 rem add integers and store result in c
38 60 let c = a + b
39 65 rem
40 70 rem print the result
41 80 print c
42 90 rem terminate program execution
43 99 end